@charset "utf-8";
/* CSS Document */
.container {
  display: flex;
  flex-wrap: wrap;
}

.item {
  width: 20%;
  background-color: #f1f1f1;
  padding: 10px;
  box-sizing: border-box;
}
.item2 {
  width: 50%;
  background-color: #f1f1f1;
  padding: 5px;
  box-sizing: border-box;
}

.item2 img,
.item2 script {
  max-width: 100%;
  height: auto;
}
.item3 img,
.item3 script {
  max-width: 100%;
  height: auto;
}

/* 媒体查询 */
@media (max-width: 767px) {
  .item {
    width: 50%;
  }
	.item2 {
    width: 100%;
  }
}